summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink/oboe_sink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio_core/sink/oboe_sink.cpp')
-rw-r--r--src/audio_core/sink/oboe_sink.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audio_core/sink/oboe_sink.cpp b/src/audio_core/sink/oboe_sink.cpp
index c502205e1..8143b0db6 100644
--- a/src/audio_core/sink/oboe_sink.cpp
+++ b/src/audio_core/sink/oboe_sink.cpp
@@ -67,6 +67,7 @@ public:
oboe::AudioStreamBuilder builder;
const auto result = builder.setDirection(direction)
+ ->setPerformanceMode(oboe::PerformanceMode::LowLatency)
->setSampleRate(TargetSampleRate)
->setFormat(oboe::AudioFormat::I16)
->setFormatConversionAllowed(true)
@@ -136,6 +137,7 @@ private:
oboe::AudioStreamBuilder builder;
const auto result = builder.setDirection(direction)
+ ->setPerformanceMode(oboe::PerformanceMode::LowLatency)
->setSampleRate(TargetSampleRate)
->setChannelCount(expected_channels)
->setChannelMask(expected_mask)